projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a66afea
)
Reorder args in callers of del_range_2.
author
Karl Heuer
<kwzh@gnu.org>
Fri, 27 Feb 1998 22:09:52 +0000
(22:09 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Fri, 27 Feb 1998 22:09:52 +0000
(22:09 +0000)
src/coding.c
patch
|
blob
|
history
diff --git
a/src/coding.c
b/src/coding.c
index 62708fb60f4fb31e40fc77ba8ffb909d3363860b..2c1364d540dc8e06fba67b257f606cd0b75a1b59 100644
(file)
--- a/
src/coding.c
+++ b/
src/coding.c
@@
-4052,7
+4052,7
@@
code_convert_region (from, from_byte, to, to_byte, coding, encodep, adjust)
len = ZV - BEGV;
new = current_buffer;
set_buffer_internal_1 (prev);
- del_range_2 (from,
to, from_byte
, to_byte);
+ del_range_2 (from,
from_byte, to
, to_byte);
insert_from_buffer (new, BEG, len, 0);
to = from + len;
to_byte = multibyte ? CHAR_TO_BYTE (to) : to;